pandas iterrows tqdm

115

pandas iterrows tqdm -

for index, row in tqdm(df.iterrows(), total=df.shape[0]):
   print("index",index)
   print("row",row)

Comments

Submit
0 Comments